home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / LANG / C / LIB / UNIXLIB37B / !UnixLib37 / src / signal / c / siginfo < prev    next >
Text File  |  1996-11-09  |  823b  |  32 lines

  1. /****************************************************************************
  2.  *
  3.  * $Source: /unixb/home/unixlib/source/unixlib37/src/signal/c/RCS/siginfo,v $
  4.  * $Date: 1996/10/30 22:04:51 $
  5.  * $Revision: 1.1 $
  6.  * $State: Rel $
  7.  * $Author: unixlib $
  8.  *
  9.  * $Log: siginfo,v $
  10.  * Revision 1.1  1996/10/30 22:04:51  unixlib
  11.  * Initial revision
  12.  *
  13.  ***************************************************************************/
  14.  
  15. static const char rcs_id[] = "$Id: siginfo,v 1.1 1996/10/30 22:04:51 unixlib Rel $";
  16.  
  17. /* Written by Nick Burrett, 27 August 1996.  */
  18.  
  19. #include <stdio.h>
  20. #include <signal.h>
  21. #include <unixlib/sigstate.h>
  22.  
  23. /* We should print something relatively informative here.
  24.    But I can't think of anything to print.  */
  25.  
  26. void
  27. __unixlib_siginfo_handler (int signo)
  28. {
  29.   signo = signo;
  30.   puts ("got a SIGINFO");
  31. }
  32.